Graphics framework for GR-PEACH. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Dependents:   ImageZoomInout_Sample ImageRotaion_Sample ImageScroll_Sample GR-PEACH_LCD_4_3inch_Save_to_USB ... more

License

When you use this library, we judge you have agreed to the following contents.

https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Note

If you import the GraphicsFramework library, please import GR-PEACH_video library and R_BSP library together.



JPEG Converter

The JPEG Converter driver implements encode and decode functionality which uses the JCU of the RZ/A Series.

Hello World!

Import programJCU_HelloWorld

Hello World for JCU(JPEG Codec Unit). JCU is JPEG codec unit of RZ/A1. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

API

Import library

Data Structures

struct bitmap_buff_info_t
Bitmap data setting struct. More...
struct encode_options_t
Encode option setting. More...

Public Types

enum jpeg_conv_error_t {
JPEG_CONV_OK = 0, JPEG_CONV_JCU_ERR = -1, JPEG_CONV_FORMA_ERR = -2, JPEG_CONV_PARAM_ERR = -3,
JPEG_CONV_BUSY = -4, JPEG_CONV_PARAM_RANGE_ERR = -7
}

Error codes.

More...
enum wr_rd_swa_t {
WR_RD_WRSWA_NON = 0, WR_RD_WRSWA_8BIT = 1, WR_RD_WRSWA_16BIT = 2, WR_RD_WRSWA_16_8BIT = 3,
WR_RD_WRSWA_32BIT = 4, WR_RD_WRSWA_32_8BIT = 5, WR_RD_WRSWA_32_16BIT = 6, WR_RD_WRSWA_32_16_8BIT = 7
}

Write/Read image pixcel frame buffer swap setting.

More...
enum wr_rd_format_t { WR_RD_YCbCr422 = 0x00, WR_RD_ARGB8888 = 0x01, WR_RD_RGB565 = 0x02 }

Write/Read image pixcel format selects.

More...
enum sub_sampling_t { SUB_SAMPLING_1_1 = 0x00, SUB_SAMPLING_1_2 = 0x01, SUB_SAMPLING_1_4 = 0x02, SUB_SAMPLING_1_8 = 0x03 }

Thinning output image selects.

More...
enum cbcr_offset_t { CBCR_OFFSET_0 = 0x00, CBCR_OFFSET_128 = 0x01 }

Cb/Cr range selects for decode.

More...

Public Member Functions

JPEG_Converter ()
Constructor method of JPEG converter(encode/decode)
virtual ~JPEG_Converter ()
Destructor method of JPEG converter(encode/decode)
JPEG_Converter::jpeg_conv_error_t decode (void *pJpegBuff, bitmap_buff_info_t *psOutputBuff)
Decode JPEG to rinear data.
JPEG_Converter::jpeg_conv_error_t decode (void *pJpegBuff, bitmap_buff_info_t *psOutputBuff, decode_options_t *pOptions)
JPEG data decode to bitmap.
JPEG_Converter::jpeg_conv_error_t encode ( bitmap_buff_info_t *psInputBuff, void *pJpegBuff, size_t *pEncodeSize)
Encode rinear data to JPEG.
JPEG_Converter::jpeg_conv_error_t encode ( bitmap_buff_info_t *psInputBuff, void *pJpegBuff, size_t *pEncodeSize, encode_options_t *pOptions)
Bitmap data encode to JPEG.
JPEG_Converter::jpeg_conv_error_t SetQuality (const uint8_t qual)
Set encode quality.

Correspondence file

A correspondence file of JPEG Converter is as the following table.

JPEGCorrespondence
Width>0(greater than 0)
Height>0(greater than 0)
Color formatYCbCr444, YCbCr422, YCbCr420, YCbCr411
BitmapCorrespondence
Width>0(greater than 0)
Height>0(greater than 0)
Color formatYCbCr422

Notice

You run JPEG converter once destruction each time.

You set whether these JPEG files aren't input, or it check error setting decode(set in "flag" = true). The JPEG file which becomes correspondence outside will be the following condition.

  • File besides the above-mentioned correspondence file.
  • As information in the JPEG file, WIDTH or HEIGHT is larger than output buffer setting.

Buffer area is used encode/decode, set 8 bytes align and non-cash memory area. The output buffer when decoding, is made beyond the size decided in the size of the JPEG file, the format, setting of thinning out. You make output buffer for decode/encode to enough big size in order to stock this result. JPEG Converter, if you do not particularly perform specified, does not check size against the output data at the time of encoding and decoding. You set the output buffer so that there is no effect of corruption by the output data.

Color format

Color format in case to be converted from Bitmap to JPEG is either ARGB8888 or RGB555, YCbCr422. Color format of the If you want to convert from JPEG file to Bitmap file is YCbCr422. You correct "alpha(member of decode_options_t)" of setting and "output_cb_cr_offset(member of decode_options_t)" according to color format when decoding.

  • example
    decode to ARGB8888(WR_RD_ARGB8888 set in format member of bitmap_buff_info_t)
    alpha = 0x01-0xFF
    output_cb_cr_offset = CBCR_OFFSET_0

    decode to YCbCr422(WR_RD_YCbCr422 set in format member of bitmap_buff_info_t)
    alpha = 0
    output_cb_cr_offset = CBCR_OFFSET_0 or CBCR_OFFSET_128

    decode to RGB565(WR_RD_RGB565 set in format member of bitmap_buff_info_t)
    alpha = 0
    output_cb_cr_offset = CBCR_OFFSET_0

Decode/encode settings are optional

If omitted encode/decode settings, it will work with the following settings.
[Decode option setting (member of decode_options_t)]

  • Vertical sub sampling is thinning output image to 1/1.
  • Horizontal sub sampling is thinning output image to 1/1.
  • Output data of Cb/Cr range is -128 to 127.
  • Output data of swap in 8-bit units: 2-1-4-3-6-5-8-7.
  • Alpha value of 0.
  • JPEG format correspondence outside error check.
  • It decode in a synchronous function.

[Encode option setting (member of encode_options_t)]

  • DRI value is 0.
  • Encoding JPEG file start width offset is 0.
  • Encoding JPEG file start height offset is 0.
  • Input data of Cb/Cr range of input data is -128 to 127.
  • Input data swap in 8-bit units: 2-1-4-3-6-5-8-7.
  • It don't check encode size.
  • Quantization Y use default table(Quality75).
  • Quantization C use default table(Quality75).
  • Huffman Y DC use default table.
  • Huffman C DC use default table.
  • Huffman Y AC use default table.
  • Huffman C AC use default table.
  • It encode in a synchronous function.

Synchronous/asynchronous switching

Decoding and encoding setting to operate asynchronously by setting a callback function(decode_options_t and encode_options_t).

Quality

Quality changes are possible. If you want to change the Quality, please specify the table made of Quality you want to change the address of the setting. If you do not want to change the Quality, it will operate at Quality75.

RGA

The RGA library implements fast drawing functionality which uses the RGA of the RZ/A Series.
Supporting compiler is ARMCC, GCC ARM and IAR.

Hello World!

Import programRGA_HelloWorld

Hello World for RGA(Renesas Graphics Architecture). RGA is the Graphics Library of RZ/A1. When you use this program, we judge you have agreed to the following contents. https://developer.mbed.org/teams/Renesas/wiki/About-LICENSE

Committer:
dkato
Date:
Mon Apr 24 08:16:23 2017 +0000
Revision:
13:1ee2176ef13f
Parent:
3:9f857750e4e9
Add "SetQuality()" to JCU.
; Bug fixes.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
1050186 3:9f857750e4e9 1 /*******************************************************************************
1050186 3:9f857750e4e9 2 * DISCLAIMER
1050186 3:9f857750e4e9 3 * This software is supplied by Renesas Electronics Corporation and is only
1050186 3:9f857750e4e9 4 * intended for use with Renesas products. No other uses are authorized. This
1050186 3:9f857750e4e9 5 * software is owned by Renesas Electronics Corporation and is protected under
1050186 3:9f857750e4e9 6 * all applicable laws, including copyright laws.
1050186 3:9f857750e4e9 7 * THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
1050186 3:9f857750e4e9 8 * THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
1050186 3:9f857750e4e9 9 * LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
1050186 3:9f857750e4e9 10 * AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
1050186 3:9f857750e4e9 11 * TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
1050186 3:9f857750e4e9 12 * ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
1050186 3:9f857750e4e9 13 * FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
1050186 3:9f857750e4e9 14 * ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
1050186 3:9f857750e4e9 15 * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
1050186 3:9f857750e4e9 16 * Renesas reserves the right, without notice, to make changes to this software
1050186 3:9f857750e4e9 17 * and to discontinue the availability of this software. By using this software,
1050186 3:9f857750e4e9 18 * you agree to the additional terms and conditions found by accessing the
1050186 3:9f857750e4e9 19 * following link:
1050186 3:9f857750e4e9 20 * http://www.renesas.com/disclaimer
1050186 3:9f857750e4e9 21 * Copyright (C) 2013 - 2014 Renesas Electronics Corporation. All rights reserved.
1050186 3:9f857750e4e9 22 *******************************************************************************/
1050186 3:9f857750e4e9 23 /**
1050186 3:9f857750e4e9 24 * @file RGA_API.h
1050186 3:9f857750e4e9 25 * @brief $Module: RGA $ $PublicVersion: 1.20 $ (=RGA_VERSION)
1050186 3:9f857750e4e9 26 * $Rev: $
1050186 3:9f857750e4e9 27 * $Date:: $
1050186 3:9f857750e4e9 28 */
1050186 3:9f857750e4e9 29
1050186 3:9f857750e4e9 30 #ifndef RGA_API_H
1050186 3:9f857750e4e9 31 #define RGA_API_H
1050186 3:9f857750e4e9 32
1050186 3:9f857750e4e9 33 /******************************************************************************
1050186 3:9f857750e4e9 34 Includes <System Includes> , "Project Includes"
1050186 3:9f857750e4e9 35 ******************************************************************************/
1050186 3:9f857750e4e9 36 #include "RGA_API_typedef.h"
1050186 3:9f857750e4e9 37 #include "frame_buffer_typedef.h"
1050186 3:9f857750e4e9 38
1050186 3:9f857750e4e9 39 #ifdef __cplusplus
1050186 3:9f857750e4e9 40 extern "C" {
1050186 3:9f857750e4e9 41 #endif
1050186 3:9f857750e4e9 42
1050186 3:9f857750e4e9 43
1050186 3:9f857750e4e9 44
1050186 3:9f857750e4e9 45 /******************************************************************************
1050186 3:9f857750e4e9 46 Typedef definitions
1050186 3:9f857750e4e9 47 ******************************************************************************/
1050186 3:9f857750e4e9 48
1050186 3:9f857750e4e9 49 /******************************************************************************
1050186 3:9f857750e4e9 50 Macro definitions
1050186 3:9f857750e4e9 51 ******************************************************************************/
1050186 3:9f857750e4e9 52
1050186 3:9f857750e4e9 53 /******************************************************************************
1050186 3:9f857750e4e9 54 Variable Externs
1050186 3:9f857750e4e9 55 ******************************************************************************/
1050186 3:9f857750e4e9 56
1050186 3:9f857750e4e9 57 /******************************************************************************
1050186 3:9f857750e4e9 58 Functions Prototypes
1050186 3:9f857750e4e9 59 ******************************************************************************/
1050186 3:9f857750e4e9 60
1050186 3:9f857750e4e9 61
1050186 3:9f857750e4e9 62 /***********************************************************************
1050186 3:9f857750e4e9 63 * Functions: R_RGA
1050186 3:9f857750e4e9 64 ************************************************************************/
1050186 3:9f857750e4e9 65 bool_t R_RGA_IsSupportedPixelFormatForRGAH( pixel_format_t pixel_format );
1050186 3:9f857750e4e9 66
1050186 3:9f857750e4e9 67
1050186 3:9f857750e4e9 68 /***********************************************************************
1050186 3:9f857750e4e9 69 * Class: graphics_image_t
1050186 3:9f857750e4e9 70 ************************************************************************/
1050186 3:9f857750e4e9 71 errnum_t R_GRAPHICS_IMAGE_InitR8G8B8A8(
1050186 3:9f857750e4e9 72 graphics_image_t *self, void *ImageDataArray, size_t ImageDataArraySize,
1050186 3:9f857750e4e9 73 int_fast32_t width, int_fast32_t height );
1050186 3:9f857750e4e9 74 errnum_t R_GRAPHICS_IMAGE_InitSameSizeR8G8B8A8(
1050186 3:9f857750e4e9 75 graphics_image_t *self, void *ImageDataArray, size_t ImageDataArraySize,
1050186 3:9f857750e4e9 76 graphics_image_t *SameSizeImage );
1050186 3:9f857750e4e9 77 errnum_t R_GRAPHICS_IMAGE_InitCopyFrameBufferR8G8B8A8(
1050186 3:9f857750e4e9 78 graphics_image_t *self, void *ImageDataArray, size_t ImageDataArraySize,
1050186 3:9f857750e4e9 79 graphics_t *Context, int_fast32_t MinX, int_fast32_t MinY, int_fast32_t width, int_fast32_t height );
1050186 3:9f857750e4e9 80 errnum_t R_GRAPHICS_IMAGE_InitByShareFrameBuffer( graphics_image_t *self, frame_buffer_t *frame_buffer );
1050186 3:9f857750e4e9 81 errnum_t R_GRAPHICS_IMAGE_GetProperties( const graphics_image_t *self, graphics_image_properties_t *out_Properties );
1050186 3:9f857750e4e9 82 errnum_t R_GRAPHICS_IMAGE_GetImageFormat( const graphics_image_t *self, pixel_format_t *out_Format );
1050186 3:9f857750e4e9 83
1050186 3:9f857750e4e9 84
1050186 3:9f857750e4e9 85 /***********************************************************************
1050186 3:9f857750e4e9 86 * Class: graphics_pattern_t
1050186 3:9f857750e4e9 87 ************************************************************************/
1050186 3:9f857750e4e9 88 errnum_t R_GRAPHICS_PATTERN_Initialize( graphics_pattern_t *self,
1050186 3:9f857750e4e9 89 const graphics_image_t *image, repetition_t repetition, graphics_t *Context );
1050186 3:9f857750e4e9 90
1050186 3:9f857750e4e9 91
1050186 3:9f857750e4e9 92 /***********************************************************************
1050186 3:9f857750e4e9 93 * Class: graphics_t
1050186 3:9f857750e4e9 94 ************************************************************************/
1050186 3:9f857750e4e9 95 void R_GRAPHICS_InitConst( graphics_t *self );
1050186 3:9f857750e4e9 96 errnum_t R_GRAPHICS_Initialize( graphics_t *self, graphics_config_t *Config );
1050186 3:9f857750e4e9 97 errnum_t R_GRAPHICS_Finalize( graphics_t *self, errnum_t e );
1050186 3:9f857750e4e9 98
1050186 3:9f857750e4e9 99 errnum_t R_GRAPHICS_SetFrameBuffer( graphics_t *self, frame_buffer_t *frame_buffer );
1050186 3:9f857750e4e9 100 errnum_t R_GRAPHICS_GetFrameBuffer( graphics_t *self, frame_buffer_t **out_frame_buffer );
1050186 3:9f857750e4e9 101 errnum_t R_GRAPHICS_Finish( graphics_t *self );
1050186 3:9f857750e4e9 102 errnum_t R_GRAPHICS_FinishStart( graphics_t *self, r_ospl_async_t *Async );
1050186 3:9f857750e4e9 103 errnum_t R_GRAPHICS_GetAsyncStatus( graphics_t *self, const graphics_async_status_t **out_Status );
1050186 3:9f857750e4e9 104 errnum_t R_GRAPHICS_OnInterrupting(void);
1050186 3:9f857750e4e9 105
1050186 3:9f857750e4e9 106 errnum_t R_GRAPHICS_Save( graphics_t *self, graphics_status_t *out_Status );
1050186 3:9f857750e4e9 107 errnum_t R_GRAPHICS_Restore( graphics_t *self, graphics_status_t *Status, errnum_t e );
1050186 3:9f857750e4e9 108
1050186 3:9f857750e4e9 109 errnum_t R_GRAPHICS_ResetMatrix( graphics_t *self );
1050186 3:9f857750e4e9 110 errnum_t R_GRAPHICS_SetMatrix_2x3( graphics_t *self, graphics_matrix_float_t sx, graphics_matrix_float_t ky,
1050186 3:9f857750e4e9 111 graphics_matrix_float_t kx, graphics_matrix_float_t sy, graphics_matrix_float_t tx, graphics_matrix_float_t ty );
1050186 3:9f857750e4e9 112 errnum_t R_GRAPHICS_SetMatrix_3x3( graphics_t *self, graphics_matrix_float_t *Matrix );
1050186 3:9f857750e4e9 113 errnum_t R_GRAPHICS_GetMatrix_3x3( graphics_t *self, graphics_matrix_float_t *out_Matrix );
1050186 3:9f857750e4e9 114 errnum_t R_GRAPHICS_TranslateMatrixI( graphics_t *self, int_fast32_t tx, int_fast32_t ty );
1050186 3:9f857750e4e9 115 errnum_t R_GRAPHICS_TranslateMatrix( graphics_t *self, graphics_matrix_float_t tx, graphics_matrix_float_t ty );
1050186 3:9f857750e4e9 116 errnum_t R_GRAPHICS_ScaleMatrix( graphics_t *self, graphics_matrix_float_t sx, graphics_matrix_float_t sy );
1050186 3:9f857750e4e9 117 errnum_t R_GRAPHICS_RotateMatrixDegree( graphics_t *self, graphics_matrix_float_t degree );
1050186 3:9f857750e4e9 118 errnum_t R_GRAPHICS_ShearMatrix( graphics_t *self, graphics_matrix_float_t shx, graphics_matrix_float_t shy );
1050186 3:9f857750e4e9 119 errnum_t R_GRAPHICS_TransformMatrix( graphics_t *self, graphics_matrix_float_t sx, graphics_matrix_float_t ky,
1050186 3:9f857750e4e9 120 graphics_matrix_float_t kx, graphics_matrix_float_t sy, graphics_matrix_float_t tx, graphics_matrix_float_t ty );
1050186 3:9f857750e4e9 121 errnum_t R_GRAPHICS_MultiplyMatrix( graphics_t *self, graphics_matrix_float_t *Matrix );
1050186 3:9f857750e4e9 122 errnum_t R_GRAPHICS_GetProjectiveMatrix(
1050186 3:9f857750e4e9 123 graphics_matrix_float_t SourceTopLeftX, graphics_matrix_float_t SourceTopLeftY,
1050186 3:9f857750e4e9 124 graphics_matrix_float_t SourceTopRightX, graphics_matrix_float_t SourceTopRightY,
1050186 3:9f857750e4e9 125 graphics_matrix_float_t SourceBottomLeftX, graphics_matrix_float_t SourceBottomLeftY,
1050186 3:9f857750e4e9 126 graphics_matrix_float_t SourceBottomRightX, graphics_matrix_float_t SourceBottomRightY,
1050186 3:9f857750e4e9 127 graphics_matrix_float_t DestinationTopLeftX, graphics_matrix_float_t DestinationTopLeftY,
1050186 3:9f857750e4e9 128 graphics_matrix_float_t DestinationTopRightX, graphics_matrix_float_t DestinationTopRightY,
1050186 3:9f857750e4e9 129 graphics_matrix_float_t DestinationBottomLeftX, graphics_matrix_float_t DestinationBottomLeftY,
1050186 3:9f857750e4e9 130 graphics_matrix_float_t DestinationBottomRightX, graphics_matrix_float_t DestinationBottomRightY,
1050186 3:9f857750e4e9 131 graphics_matrix_float_t *out_Matrix );
1050186 3:9f857750e4e9 132
1050186 3:9f857750e4e9 133 errnum_t R_GRAPHICS_SetBackgroundColor( graphics_t *self, r8g8b8a8_t Color );
1050186 3:9f857750e4e9 134 errnum_t R_GRAPHICS_GetBackgroundColor( graphics_t *self, r8g8b8a8_t *out_Color );
1050186 3:9f857750e4e9 135 errnum_t R_GRAPHICS_GetClearColor( graphics_t *self, r8g8b8a8_t *out_Color );
1050186 3:9f857750e4e9 136 errnum_t R_GRAPHICS_Clear( graphics_t *self,
1050186 3:9f857750e4e9 137 int_fast32_t MinX, int_fast32_t MinY, int_fast32_t width, int_fast32_t height );
1050186 3:9f857750e4e9 138
1050186 3:9f857750e4e9 139 errnum_t R_GRAPHICS_DrawImage( graphics_t *self, const graphics_image_t *image,
1050186 3:9f857750e4e9 140 int_fast32_t MinX, int_fast32_t MinY );
1050186 3:9f857750e4e9 141 errnum_t R_GRAPHICS_DrawImageResized( graphics_t *self, const graphics_image_t *image,
1050186 3:9f857750e4e9 142 int_fast32_t MinX, int_fast32_t MinY, int_fast32_t width, int_fast32_t height );
1050186 3:9f857750e4e9 143 errnum_t R_GRAPHICS_DrawImageChild( graphics_t *self, const graphics_image_t *image,
1050186 3:9f857750e4e9 144 int_fast32_t SourceMinX, int_fast32_t SourceMinY,
1050186 3:9f857750e4e9 145 int_fast32_t SourceWidth, int_fast32_t SourceHeight,
1050186 3:9f857750e4e9 146 int_fast32_t DestinationMinX, int_fast32_t DestinationMinY,
1050186 3:9f857750e4e9 147 int_fast32_t DestinationWidth, int_fast32_t DestinationHeight );
1050186 3:9f857750e4e9 148
1050186 3:9f857750e4e9 149 errnum_t R_GRAPHICS_FillRect( graphics_t *self, int_fast32_t MinX, int_fast32_t MinY,
1050186 3:9f857750e4e9 150 int_fast32_t width, int_fast32_t height );
1050186 3:9f857750e4e9 151 errnum_t R_GRAPHICS_SetFillColor( graphics_t *self, r8g8b8a8_t Color );
1050186 3:9f857750e4e9 152 errnum_t R_GRAPHICS_SetFillPattern( graphics_t *self, graphics_pattern_t *Pattern );
1050186 3:9f857750e4e9 153
1050186 3:9f857750e4e9 154 errnum_t R_GRAPHICS_StrokeRect( graphics_t *self, int_fast32_t MinX, int_fast32_t MinY,
1050186 3:9f857750e4e9 155 int_fast32_t width, int_fast32_t height );
1050186 3:9f857750e4e9 156 errnum_t R_GRAPHICS_SetStrokeColor( graphics_t *self, r8g8b8a8_t Color );
1050186 3:9f857750e4e9 157
1050186 3:9f857750e4e9 158 errnum_t R_GRAPHICS_BeginPath( graphics_t *self );
1050186 3:9f857750e4e9 159 errnum_t R_GRAPHICS_Rect( graphics_t *self, int_t MinX, int_t MinY,
1050186 3:9f857750e4e9 160 int_t width, int_t height );
1050186 3:9f857750e4e9 161 errnum_t R_GRAPHICS_Cilp( graphics_t *self );
1050186 3:9f857750e4e9 162
1050186 3:9f857750e4e9 163 errnum_t R_GRAPHICS_SetGlobalAlpha( graphics_t *self, uint8_t AlphaValue );
1050186 3:9f857750e4e9 164 errnum_t R_GRAPHICS_GetGlobalAlpha( graphics_t *self, uint8_t *out_AlphaValue );
1050186 3:9f857750e4e9 165 errnum_t R_GRAPHICS_SetGlobalCompositeOperation( graphics_t *self,
1050186 3:9f857750e4e9 166 graphics_composite_operation_t CompositeOperation );
1050186 3:9f857750e4e9 167 errnum_t R_GRAPHICS_GetGlobalCompositeOperation( graphics_t *self,
1050186 3:9f857750e4e9 168 graphics_composite_operation_t *out_CompositeOperation );
1050186 3:9f857750e4e9 169
1050186 3:9f857750e4e9 170 errnum_t R_GRAPHICS_SetQualityFlags( graphics_t *self,
1050186 3:9f857750e4e9 171 graphics_quality_flags_t Qualities );
1050186 3:9f857750e4e9 172 errnum_t R_GRAPHICS_GetQualityFlags( graphics_t *self,
1050186 3:9f857750e4e9 173 graphics_quality_flags_t *out_Qualities );
1050186 3:9f857750e4e9 174
1050186 3:9f857750e4e9 175
1050186 3:9f857750e4e9 176 /***********************************************************************
1050186 3:9f857750e4e9 177 * Class: graphics_static_t
1050186 3:9f857750e4e9 178 ************************************************************************/
1050186 3:9f857750e4e9 179 graphics_static_t *get_graphics_static(void);
1050186 3:9f857750e4e9 180 errnum_t R_GRAPHICS_STATIC_GetVersion( uint32_t *out_Version );
1050186 3:9f857750e4e9 181 errnum_t R_GRAPHICS_STATIC_OnInitializeDefault( graphics_t *self, graphics_config_t *in_out_Config,
1050186 3:9f857750e4e9 182 void **out_CalleeDefined );
1050186 3:9f857750e4e9 183 errnum_t R_GRAPHICS_STATIC_OnFinalizeDefault( graphics_t *self, void *CalleeDefined, errnum_t e );
1050186 3:9f857750e4e9 184 errnum_t R_GRAPHICS_STATIC_SetOnInitialize(
1050186 3:9f857750e4e9 185 R_GRAPHICS_OnInitialize_FuncType CallbackFunction );
1050186 3:9f857750e4e9 186 errnum_t R_GRAPHICS_STATIC_SetOnFinalize(
1050186 3:9f857750e4e9 187 R_GRAPHICS_OnFinalize_FuncType CallbackFunction );
1050186 3:9f857750e4e9 188
1050186 3:9f857750e4e9 189
1050186 3:9f857750e4e9 190 /***********************************************************************
1050186 3:9f857750e4e9 191 * Class: RGA_SHS
1050186 3:9f857750e4e9 192 * Synchronize hardware and software rendering
1050186 3:9f857750e4e9 193 ************************************************************************/
1050186 3:9f857750e4e9 194 errnum_t R_GRAPHICS_BeginSoftwareRendering( graphics_t *self );
1050186 3:9f857750e4e9 195 errnum_t R_GRAPHICS_BeginSoftwareRendering2( graphics_t *self );
1050186 3:9f857750e4e9 196 errnum_t R_GRAPHICS_BeginSoftwareRenderingA( graphics_t *self, void *Address );
1050186 3:9f857750e4e9 197 errnum_t R_GRAPHICS_EndSoftwareRendering( graphics_t *self );
1050186 3:9f857750e4e9 198 errnum_t R_GRAPHICS_EndRenderingInFin( graphics_t *self, errnum_t e );
1050186 3:9f857750e4e9 199
1050186 3:9f857750e4e9 200
1050186 3:9f857750e4e9 201 /***********************************************************************
1050186 3:9f857750e4e9 202 * Class: animation_timing_function_t
1050186 3:9f857750e4e9 203 ************************************************************************/
1050186 3:9f857750e4e9 204 errnum_t R_Get_AnimationTimingFunction( char_t *TimingName,
1050186 3:9f857750e4e9 205 animation_timing_function_t **out_Timing );
1050186 3:9f857750e4e9 206
1050186 3:9f857750e4e9 207 float32_t R_ANIMATION_TIMING_FUNCTION_GetValue( animation_timing_function_t *self,
1050186 3:9f857750e4e9 208 float32_t ClampTime, float32_t ValueOfPreviousKeyFrame, float32_t ValueOfNextKeyFrame );
1050186 3:9f857750e4e9 209
1050186 3:9f857750e4e9 210
1050186 3:9f857750e4e9 211 /***********************************************************************
1050186 3:9f857750e4e9 212 * Functions: Self_Test_for_Package
1050186 3:9f857750e4e9 213 ************************************************************************/
1050186 3:9f857750e4e9 214 errnum_t R_RGA_CheckStructSize( size_t SizeOf_GraphicsClass, size_t SizeOf_GraphicsStatusClass,
1050186 3:9f857750e4e9 215 size_t Zero );
1050186 3:9f857750e4e9 216
1050186 3:9f857750e4e9 217
1050186 3:9f857750e4e9 218 #ifdef __cplusplus
1050186 3:9f857750e4e9 219 } /* extern "C" */
1050186 3:9f857750e4e9 220 #endif
1050186 3:9f857750e4e9 221
1050186 3:9f857750e4e9 222 #endif /* RGA_API_H */