os/graphics/graphicscomposition/openwfcompositionengine/composition/include/wfcimageprovider.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/* Copyright (c) 2009 The Khronos Group Inc.
sl@0
     2
 * Portions copyright (c) 2009-2010  Nokia Corporation and/or its subsidiary(-ies)
sl@0
     3
 *
sl@0
     4
 * Permission is hereby granted, free of charge, to any person obtaining a
sl@0
     5
 * copy of this software and/or associated documentation files (the
sl@0
     6
 * "Materials"), to deal in the Materials without restriction, including
sl@0
     7
 * without limitation the rights to use, copy, modify, merge, publish,
sl@0
     8
 * distribute, sublicense, and/or sell copies of the Materials, and to
sl@0
     9
 * permit persons to whom the Materials are furnished to do so, subject to
sl@0
    10
 * the following conditions:
sl@0
    11
 *
sl@0
    12
 * The above copyright notice and this permission notice shall be included
sl@0
    13
 * in all copies or substantial portions of the Materials.
sl@0
    14
 *
sl@0
    15
 * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
sl@0
    16
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
sl@0
    17
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
sl@0
    18
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
sl@0
    19
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
sl@0
    20
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
sl@0
    21
 * MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
sl@0
    22
 */
sl@0
    23
/*! \ingroup wfc
sl@0
    24
 *  \file wfcimageprovider.h
sl@0
    25
 *
sl@0
    26
 *  \brief Routines for image providers
sl@0
    27
 */
sl@0
    28
sl@0
    29
#ifndef WFCIMAGEPROVIDER_H_
sl@0
    30
#define WFCIMAGEPROVIDER_H_
sl@0
    31
sl@0
    32
#include <stdio.h>
sl@0
    33
#include <stdlib.h>
sl@0
    34
sl@0
    35
#include "WF/wfc.h"
sl@0
    36
#include "owfobject.h"
sl@0
    37
#include "owfimage.h"
sl@0
    38
#include "owfarray.h"
sl@0
    39
#include "owfmemory.h"
sl@0
    40
#include "wfcstructs.h"
sl@0
    41
sl@0
    42
#ifdef __cplusplus
sl@0
    43
extern "C"
sl@0
    44
{
sl@0
    45
#endif
sl@0
    46
sl@0
    47
OWF_API_CALL WFC_IMAGE_PROVIDER*
sl@0
    48
WFC_ImageProvider_Create(void* owner, /*WFC_CONTEXT* context,*/
sl@0
    49
                         OWFNativeStreamType stream,
sl@0
    50
                         WFC_IMAGE_PROVIDER_TYPE type);
sl@0
    51
sl@0
    52
OWF_API_CALL void
sl@0
    53
WFC_ImageProvider_LockForReading(WFC_IMAGE_PROVIDER* provider);
sl@0
    54
sl@0
    55
OWF_API_CALL void
sl@0
    56
WFC_ImageProvider_Unlock(WFC_IMAGE_PROVIDER* provider);
sl@0
    57
sl@0
    58
#ifdef __cplusplus
sl@0
    59
}
sl@0
    60
#endif
sl@0
    61
sl@0
    62
sl@0
    63
sl@0
    64
#endif /* WFCIMAGEPROVIDER_H_ */