d2d1: Add ID2D1Bitmap1 stub.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
638037bb28
commit
b756609894
|
@ -24,21 +24,22 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(d2d);
|
||||
|
||||
static inline struct d2d_bitmap *impl_from_ID2D1Bitmap(ID2D1Bitmap *iface)
|
||||
static inline struct d2d_bitmap *impl_from_ID2D1Bitmap1(ID2D1Bitmap1 *iface)
|
||||
{
|
||||
return CONTAINING_RECORD(iface, struct d2d_bitmap, ID2D1Bitmap_iface);
|
||||
return CONTAINING_RECORD(iface, struct d2d_bitmap, ID2D1Bitmap1_iface);
|
||||
}
|
||||
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_QueryInterface(ID2D1Bitmap *iface, REFIID iid, void **out)
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_QueryInterface(ID2D1Bitmap1 *iface, REFIID iid, void **out)
|
||||
{
|
||||
TRACE("iface %p, iid %s, out %p.\n", iface, debugstr_guid(iid), out);
|
||||
|
||||
if (IsEqualGUID(iid, &IID_ID2D1Bitmap)
|
||||
if (IsEqualGUID(iid, &IID_ID2D1Bitmap1)
|
||||
|| IsEqualGUID(iid, &IID_ID2D1Bitmap)
|
||||
|| IsEqualGUID(iid, &IID_ID2D1Image)
|
||||
|| IsEqualGUID(iid, &IID_ID2D1Resource)
|
||||
|| IsEqualGUID(iid, &IID_IUnknown))
|
||||
{
|
||||
ID2D1Bitmap_AddRef(iface);
|
||||
ID2D1Bitmap1_AddRef(iface);
|
||||
*out = iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
@ -49,9 +50,9 @@ static HRESULT STDMETHODCALLTYPE d2d_bitmap_QueryInterface(ID2D1Bitmap *iface, R
|
|||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
static ULONG STDMETHODCALLTYPE d2d_bitmap_AddRef(ID2D1Bitmap *iface)
|
||||
static ULONG STDMETHODCALLTYPE d2d_bitmap_AddRef(ID2D1Bitmap1 *iface)
|
||||
{
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
|
||||
ULONG refcount = InterlockedIncrement(&bitmap->refcount);
|
||||
|
||||
TRACE("%p increasing refcount to %u.\n", iface, refcount);
|
||||
|
@ -59,9 +60,9 @@ static ULONG STDMETHODCALLTYPE d2d_bitmap_AddRef(ID2D1Bitmap *iface)
|
|||
return refcount;
|
||||
}
|
||||
|
||||
static ULONG STDMETHODCALLTYPE d2d_bitmap_Release(ID2D1Bitmap *iface)
|
||||
static ULONG STDMETHODCALLTYPE d2d_bitmap_Release(ID2D1Bitmap1 *iface)
|
||||
{
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
|
||||
ULONG refcount = InterlockedDecrement(&bitmap->refcount);
|
||||
|
||||
TRACE("%p decreasing refcount to %u.\n", iface, refcount);
|
||||
|
@ -76,18 +77,18 @@ static ULONG STDMETHODCALLTYPE d2d_bitmap_Release(ID2D1Bitmap *iface)
|
|||
return refcount;
|
||||
}
|
||||
|
||||
static void STDMETHODCALLTYPE d2d_bitmap_GetFactory(ID2D1Bitmap *iface, ID2D1Factory **factory)
|
||||
static void STDMETHODCALLTYPE d2d_bitmap_GetFactory(ID2D1Bitmap1 *iface, ID2D1Factory **factory)
|
||||
{
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
|
||||
|
||||
TRACE("iface %p, factory %p.\n", iface, factory);
|
||||
|
||||
ID2D1Factory_AddRef(*factory = bitmap->factory);
|
||||
}
|
||||
|
||||
static D2D1_SIZE_F * STDMETHODCALLTYPE d2d_bitmap_GetSize(ID2D1Bitmap *iface, D2D1_SIZE_F *size)
|
||||
static D2D1_SIZE_F * STDMETHODCALLTYPE d2d_bitmap_GetSize(ID2D1Bitmap1 *iface, D2D1_SIZE_F *size)
|
||||
{
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
|
||||
|
||||
TRACE("iface %p, size %p.\n", iface, size);
|
||||
|
||||
|
@ -96,9 +97,9 @@ static D2D1_SIZE_F * STDMETHODCALLTYPE d2d_bitmap_GetSize(ID2D1Bitmap *iface, D2
|
|||
return size;
|
||||
}
|
||||
|
||||
static D2D1_SIZE_U * STDMETHODCALLTYPE d2d_bitmap_GetPixelSize(ID2D1Bitmap *iface, D2D1_SIZE_U *pixel_size)
|
||||
static D2D1_SIZE_U * STDMETHODCALLTYPE d2d_bitmap_GetPixelSize(ID2D1Bitmap1 *iface, D2D1_SIZE_U *pixel_size)
|
||||
{
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
|
||||
|
||||
TRACE("iface %p, pixel_size %p.\n", iface, pixel_size);
|
||||
|
||||
|
@ -106,9 +107,9 @@ static D2D1_SIZE_U * STDMETHODCALLTYPE d2d_bitmap_GetPixelSize(ID2D1Bitmap *ifac
|
|||
return pixel_size;
|
||||
}
|
||||
|
||||
static D2D1_PIXEL_FORMAT * STDMETHODCALLTYPE d2d_bitmap_GetPixelFormat(ID2D1Bitmap *iface, D2D1_PIXEL_FORMAT *format)
|
||||
static D2D1_PIXEL_FORMAT * STDMETHODCALLTYPE d2d_bitmap_GetPixelFormat(ID2D1Bitmap1 *iface, D2D1_PIXEL_FORMAT *format)
|
||||
{
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
|
||||
|
||||
TRACE("iface %p, format %p.\n", iface, format);
|
||||
|
||||
|
@ -116,9 +117,9 @@ static D2D1_PIXEL_FORMAT * STDMETHODCALLTYPE d2d_bitmap_GetPixelFormat(ID2D1Bitm
|
|||
return format;
|
||||
}
|
||||
|
||||
static void STDMETHODCALLTYPE d2d_bitmap_GetDpi(ID2D1Bitmap *iface, float *dpi_x, float *dpi_y)
|
||||
static void STDMETHODCALLTYPE d2d_bitmap_GetDpi(ID2D1Bitmap1 *iface, float *dpi_x, float *dpi_y)
|
||||
{
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
|
||||
|
||||
TRACE("iface %p, dpi_x %p, dpi_y %p.\n", iface, dpi_x, dpi_y);
|
||||
|
||||
|
@ -126,7 +127,7 @@ static void STDMETHODCALLTYPE d2d_bitmap_GetDpi(ID2D1Bitmap *iface, float *dpi_x
|
|||
*dpi_y = bitmap->dpi_y;
|
||||
}
|
||||
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromBitmap(ID2D1Bitmap *iface,
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromBitmap(ID2D1Bitmap1 *iface,
|
||||
const D2D1_POINT_2U *dst_point, ID2D1Bitmap *bitmap, const D2D1_RECT_U *src_rect)
|
||||
{
|
||||
FIXME("iface %p, dst_point %p, bitmap %p, src_rect %p stub!\n", iface, dst_point, bitmap, src_rect);
|
||||
|
@ -134,7 +135,7 @@ static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromBitmap(ID2D1Bitmap *iface,
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromRenderTarget(ID2D1Bitmap *iface,
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromRenderTarget(ID2D1Bitmap1 *iface,
|
||||
const D2D1_POINT_2U *dst_point, ID2D1RenderTarget *render_target, const D2D1_RECT_U *src_rect)
|
||||
{
|
||||
FIXME("iface %p, dst_point %p, render_target %p, src_rect %p stub!\n", iface, dst_point, render_target, src_rect);
|
||||
|
@ -142,10 +143,10 @@ static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromRenderTarget(ID2D1Bitmap *if
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromMemory(ID2D1Bitmap *iface,
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromMemory(ID2D1Bitmap1 *iface,
|
||||
const D2D1_RECT_U *dst_rect, const void *src_data, UINT32 pitch)
|
||||
{
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap(iface);
|
||||
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
|
||||
ID3D10Device *device;
|
||||
ID3D10Resource *dst;
|
||||
D3D10_BOX box;
|
||||
|
@ -171,7 +172,41 @@ static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromMemory(ID2D1Bitmap *iface,
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
static const struct ID2D1BitmapVtbl d2d_bitmap_vtbl =
|
||||
static void STDMETHODCALLTYPE d2d_bitmap_GetColorContext(ID2D1Bitmap1 *iface, ID2D1ColorContext **context)
|
||||
{
|
||||
FIXME("iface %p, context %p stub!\n", iface, context);
|
||||
}
|
||||
|
||||
static D2D1_BITMAP_OPTIONS STDMETHODCALLTYPE d2d_bitmap_GetOptions(ID2D1Bitmap1 *iface)
|
||||
{
|
||||
FIXME("iface %p stub!\n", iface);
|
||||
|
||||
return D2D1_BITMAP_OPTIONS_NONE;
|
||||
}
|
||||
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_GetSurface(ID2D1Bitmap1 *iface, IDXGISurface **surface)
|
||||
{
|
||||
FIXME("iface %p, surface %p stub!\n", iface, surface);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_Map(ID2D1Bitmap1 *iface, D2D1_MAP_OPTIONS options,
|
||||
D2D1_MAPPED_RECT *mapped_rect)
|
||||
{
|
||||
FIXME("iface %p, options %#x, mapped_rect %p stub!\n", iface, options, mapped_rect);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT STDMETHODCALLTYPE d2d_bitmap_Unmap(ID2D1Bitmap1 *iface)
|
||||
{
|
||||
FIXME("iface %p stub!\n", iface);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static const struct ID2D1Bitmap1Vtbl d2d_bitmap_vtbl =
|
||||
{
|
||||
d2d_bitmap_QueryInterface,
|
||||
d2d_bitmap_AddRef,
|
||||
|
@ -184,6 +219,11 @@ static const struct ID2D1BitmapVtbl d2d_bitmap_vtbl =
|
|||
d2d_bitmap_CopyFromBitmap,
|
||||
d2d_bitmap_CopyFromRenderTarget,
|
||||
d2d_bitmap_CopyFromMemory,
|
||||
d2d_bitmap_GetColorContext,
|
||||
d2d_bitmap_GetOptions,
|
||||
d2d_bitmap_GetSurface,
|
||||
d2d_bitmap_Map,
|
||||
d2d_bitmap_Unmap,
|
||||
};
|
||||
|
||||
static BOOL format_supported(const D2D1_PIXEL_FORMAT *format)
|
||||
|
@ -224,7 +264,7 @@ static BOOL format_supported(const D2D1_PIXEL_FORMAT *format)
|
|||
static void d2d_bitmap_init(struct d2d_bitmap *bitmap, ID2D1Factory *factory,
|
||||
ID3D10ShaderResourceView *view, D2D1_SIZE_U size, const D2D1_BITMAP_PROPERTIES *desc)
|
||||
{
|
||||
bitmap->ID2D1Bitmap_iface.lpVtbl = &d2d_bitmap_vtbl;
|
||||
bitmap->ID2D1Bitmap1_iface.lpVtbl = &d2d_bitmap_vtbl;
|
||||
bitmap->refcount = 1;
|
||||
ID2D1Factory_AddRef(bitmap->factory = factory);
|
||||
ID3D10ShaderResourceView_AddRef(bitmap->view = view);
|
||||
|
@ -537,6 +577,6 @@ struct d2d_bitmap *unsafe_impl_from_ID2D1Bitmap(ID2D1Bitmap *iface)
|
|||
{
|
||||
if (!iface)
|
||||
return NULL;
|
||||
assert(iface->lpVtbl == &d2d_bitmap_vtbl);
|
||||
return CONTAINING_RECORD(iface, struct d2d_bitmap, ID2D1Bitmap_iface);
|
||||
assert(iface->lpVtbl == (ID2D1BitmapVtbl *)&d2d_bitmap_vtbl);
|
||||
return CONTAINING_RECORD(iface, struct d2d_bitmap, ID2D1Bitmap1_iface);
|
||||
}
|
||||
|
|
|
@ -864,7 +864,7 @@ static ULONG STDMETHODCALLTYPE d2d_bitmap_brush_Release(ID2D1BitmapBrush *iface)
|
|||
if (brush->u.bitmap.sampler_state)
|
||||
ID3D10SamplerState_Release(brush->u.bitmap.sampler_state);
|
||||
if (brush->u.bitmap.bitmap)
|
||||
ID2D1Bitmap_Release(&brush->u.bitmap.bitmap->ID2D1Bitmap_iface);
|
||||
ID2D1Bitmap1_Release(&brush->u.bitmap.bitmap->ID2D1Bitmap1_iface);
|
||||
d2d_brush_destroy(brush);
|
||||
}
|
||||
|
||||
|
@ -971,7 +971,7 @@ static void STDMETHODCALLTYPE d2d_bitmap_brush_SetBitmap(ID2D1BitmapBrush *iface
|
|||
if (bitmap)
|
||||
ID2D1Bitmap_AddRef(bitmap);
|
||||
if (brush->u.bitmap.bitmap)
|
||||
ID2D1Bitmap_Release(&brush->u.bitmap.bitmap->ID2D1Bitmap_iface);
|
||||
ID2D1Bitmap1_Release(&brush->u.bitmap.bitmap->ID2D1Bitmap1_iface);
|
||||
brush->u.bitmap.bitmap = unsafe_impl_from_ID2D1Bitmap(bitmap);
|
||||
}
|
||||
|
||||
|
@ -1008,7 +1008,7 @@ static void STDMETHODCALLTYPE d2d_bitmap_brush_GetBitmap(ID2D1BitmapBrush *iface
|
|||
|
||||
TRACE("iface %p, bitmap %p.\n", iface, bitmap);
|
||||
|
||||
if ((*bitmap = &brush->u.bitmap.bitmap->ID2D1Bitmap_iface))
|
||||
if ((*bitmap = (ID2D1Bitmap *)&brush->u.bitmap.bitmap->ID2D1Bitmap1_iface))
|
||||
ID2D1Bitmap_AddRef(*bitmap);
|
||||
}
|
||||
|
||||
|
@ -1041,7 +1041,7 @@ HRESULT d2d_bitmap_brush_create(ID2D1Factory *factory, ID2D1Bitmap *bitmap, cons
|
|||
d2d_brush_init(*brush, factory, D2D_BRUSH_TYPE_BITMAP,
|
||||
brush_desc, (ID2D1BrushVtbl *)&d2d_bitmap_brush_vtbl);
|
||||
if (((*brush)->u.bitmap.bitmap = unsafe_impl_from_ID2D1Bitmap(bitmap)))
|
||||
ID2D1Bitmap_AddRef(&(*brush)->u.bitmap.bitmap->ID2D1Bitmap_iface);
|
||||
ID2D1Bitmap1_AddRef(&(*brush)->u.bitmap.bitmap->ID2D1Bitmap1_iface);
|
||||
if (bitmap_brush_desc)
|
||||
{
|
||||
(*brush)->u.bitmap.extend_mode_x = bitmap_brush_desc->extendModeX;
|
||||
|
|
|
@ -326,7 +326,7 @@ HRESULT d2d_mesh_create(ID2D1Factory *factory, struct d2d_mesh **mesh) DECLSPEC_
|
|||
|
||||
struct d2d_bitmap
|
||||
{
|
||||
ID2D1Bitmap ID2D1Bitmap_iface;
|
||||
ID2D1Bitmap1 ID2D1Bitmap1_iface;
|
||||
LONG refcount;
|
||||
|
||||
ID2D1Factory *factory;
|
||||
|
|
|
@ -291,7 +291,7 @@ static HRESULT STDMETHODCALLTYPE d2d_d3d_render_target_CreateBitmap(ID2D1RenderT
|
|||
iface, size.width, size.height, src_data, pitch, desc, bitmap);
|
||||
|
||||
if (SUCCEEDED(hr = d2d_bitmap_create(render_target->factory, render_target->device, size, src_data, pitch, desc, &object)))
|
||||
*bitmap = &object->ID2D1Bitmap_iface;
|
||||
*bitmap = (ID2D1Bitmap *)&object->ID2D1Bitmap1_iface;
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
@ -308,7 +308,7 @@ static HRESULT STDMETHODCALLTYPE d2d_d3d_render_target_CreateBitmapFromWicBitmap
|
|||
|
||||
if (SUCCEEDED(hr = d2d_bitmap_create_from_wic_bitmap(render_target->factory, render_target->device, bitmap_source,
|
||||
desc, &object)))
|
||||
*bitmap = &object->ID2D1Bitmap_iface;
|
||||
*bitmap = (ID2D1Bitmap *)&object->ID2D1Bitmap1_iface;
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
@ -324,7 +324,7 @@ static HRESULT STDMETHODCALLTYPE d2d_d3d_render_target_CreateSharedBitmap(ID2D1R
|
|||
iface, debugstr_guid(iid), data, desc, bitmap);
|
||||
|
||||
if (SUCCEEDED(hr = d2d_bitmap_create_shared(iface, render_target->device, iid, data, desc, &object)))
|
||||
*bitmap = &object->ID2D1Bitmap_iface;
|
||||
*bitmap = (ID2D1Bitmap *)&object->ID2D1Bitmap1_iface;
|
||||
|
||||
return hr;
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@ interface ID2D1Properties;
|
|||
interface IPrintDocumentPackageTarget;
|
||||
interface ID2D1PrintControl;
|
||||
interface IWICImagingFactory;
|
||||
interface ID2D1ColorContext;
|
||||
|
||||
typedef enum D2D1_DEVICE_CONTEXT_OPTIONS
|
||||
{
|
||||
|
@ -76,6 +77,25 @@ typedef enum D2D1_COLOR_SPACE
|
|||
D2D1_COLOR_SPACE_FORCE_DWORD = 0xffffffff,
|
||||
} D2D1_COLOR_SPACE;
|
||||
|
||||
typedef enum D2D1_BITMAP_OPTIONS
|
||||
{
|
||||
D2D1_BITMAP_OPTIONS_NONE = 0x0,
|
||||
D2D1_BITMAP_OPTIONS_TARGET = 0x1,
|
||||
D2D1_BITMAP_OPTIONS_CANNOT_DRAW = 0x2,
|
||||
D2D1_BITMAP_OPTIONS_CPU_READ = 0x4,
|
||||
D2D1_BITMAP_OPTIONS_GDI_COMPATIBLE = 0x8,
|
||||
D2D1_BITMAP_OPTIONS_FORCE_DWORD = 0xffffffff,
|
||||
} D2D1_BITMAP_OPTIONS;
|
||||
|
||||
typedef enum D2D1_MAP_OPTIONS
|
||||
{
|
||||
D2D1_MAP_OPTIONS_NONE = 0x0,
|
||||
D2D1_MAP_OPTIONS_READ = 0x1,
|
||||
D2D1_MAP_OPTIONS_WRITE = 0x2,
|
||||
D2D1_MAP_OPTIONS_DISCARD = 0x4,
|
||||
D2D1_MAP_OPTIONS_FORCE_DWORD = 0xffffffff,
|
||||
} D2D1_MAP_OPTIONS;
|
||||
|
||||
typedef struct D2D1_PROPERTY_BINDING D2D1_PROPERTY_BINDING;
|
||||
|
||||
typedef struct D2D1_STROKE_STYLE_PROPERTIES1
|
||||
|
@ -108,8 +128,35 @@ typedef struct D2D1_PRINT_CONTROL_PROPERTIES
|
|||
D2D1_COLOR_SPACE colorSpace;
|
||||
} D2D1_PRINT_CONTROL_PROPERTIES;
|
||||
|
||||
typedef struct D2D1_MAPPED_RECT
|
||||
{
|
||||
UINT32 pitch;
|
||||
BYTE *bits;
|
||||
} D2D1_MAPPED_RECT;
|
||||
|
||||
typedef HRESULT (__stdcall *PD2D1_EFFECT_FACTORY)(IUnknown **effect);
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(a898a84c-3873-4588-b08b-ebbf978df041),
|
||||
local,
|
||||
]
|
||||
interface ID2D1Bitmap1 : ID2D1Bitmap
|
||||
{
|
||||
void GetColorContext(
|
||||
[out] ID2D1ColorContext **context
|
||||
);
|
||||
D2D1_BITMAP_OPTIONS GetOptions();
|
||||
HRESULT GetSurface(
|
||||
[out] IDXGISurface **surface
|
||||
);
|
||||
HRESULT Map(
|
||||
[in] D2D1_MAP_OPTIONS options,
|
||||
[out] D2D1_MAPPED_RECT *mapped_rect
|
||||
);
|
||||
HRESULT Unmap();
|
||||
}
|
||||
|
||||
[
|
||||
object,
|
||||
uuid(47dd575d-ac05-4cdd-8049-9b02cd16f44c),
|
||||
|
|
Loading…
Reference in New Issue