Displaying 7 results from an estimated 7 matches for "gettransform".
Did you mean:
settransform
2010 Jul 24
2
[LLVMdev] Controlling the order of a FunctionPass
John Criswell wrote:
> Trevor Harmon wrote:
>> On Jul 22, 2010, at 2:05 PM, John Criswell wrote:
>>
>>
>>> If you write your pass as a ModulePass, then you can iterate over the
>>> functions in any order that you want.
>>>
>>
>> I had considered that, but my FunctionPass depends on other passes
>> processing the functions first:
2007 May 23
0
Branch 'as' - 7 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_as_strings.c
...STANT_STRING ("bb")
+ SWFDEC_AS_CONSTANT_STRING ("ga")
+ SWFDEC_AS_CONSTANT_STRING ("gb")
+ SWFDEC_AS_CONSTANT_STRING ("ra")
+ SWFDEC_AS_CONSTANT_STRING ("rb")
+ SWFDEC_AS_CONSTANT_STRING ("getRGB")
+ SWFDEC_AS_CONSTANT_STRING ("getTransform")
+ SWFDEC_AS_CONSTANT_STRING ("setRGB")
+ SWFDEC_AS_CONSTANT_STRING ("setTransform")
+ SWFDEC_AS_CONSTANT_STRING ("Color")
/* add more here */
;
diff --git a/libswfdec/swfdec_color_as.c b/libswfdec/swfdec_color_as.c
new file mode 100644
index 0000000..33...
2009 Jul 03
0
Wine release 1.1.25
...a stub we should return S_FALSE from OleQueryLinkFromData.
ole32: Add support for retrieving enhanced metafiles.
ole32/tests: Add a test for enhanced metafile retrieval.
gdi32: Implement SetVirtualResolution.
gdi32: Add tests for SetVirtualResolution.
gdi32: Implement GetTransform for the other valid transform types.
gdi32: Add tests for GetTransform.
configure: Remove reference to obsolete ftnames.h.
ole32: Implement OleCreateEmbeddingHelper.
gdi32: Use the unicode version of CreateMetaFile.
gdi32: Remove obviously incorrect calls to SetMapMode...
2007 Mar 11
0
10 commits - libswfdec/js libswfdec/swfdec_js_color.c libswfdec/swfdec_js_connection.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_js_video.c libswfdec/swfdec_js_xml.c libswfdec/swfdec_script.c player/.gitignore
...g *string;
-
- string = JS_InternString (cx, "[object Object]");
- if (string == NULL)
- return JS_FALSE;
-
- *rval = STRING_TO_JSVAL (string);
- return JS_TRUE;
-}
-
static JSFunctionSpec color_methods[] = {
{ "getRGB", swfdec_js_color_get_rgb, 1, 0, 0 },
{ "getTransform", swfdec_js_color_get_transform, 1, 0, 0 },
{ "setRGB", swfdec_js_color_set_rgb, 1, 0, 0 },
{ "setTransform", swfdec_js_color_set_transform, 1, 0, 0 },
- { "toString", swfdec_js_color_to_string, 0, 0, 0 },
{0,0,0,0,0}
};
diff --git a/libswfdec...
2007 Nov 27
0
12 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h
...totype", "setMotionLevel", true],
+ ["_global.Camera.prototype", "setQuality", true],
+ ["_global.Color", "prototype", false],
+ ["_global.Color.prototype", "getRGB", false],
+ ["_global.Color.prototype", "getTransform", false],
+ ["_global.Color.prototype", "setRGB", false],
+ ["_global.Color.prototype", "setTransform", false],
+ ["_global.ContextMenu", "prototype", false],
+ ["_global.ContextMenu.prototype", "copy", true],...
2011 Jul 22
0
Wine release 1.3.25
...dle support."
gdi32: Move GET_DC_PHYSDEV back to gdi_private.h, it can't be used from external drivers.
gdi32: Add inline helpers to compute DIB stride and total size.
gdi32: Add format conversion to the null driver StretchBlt implementation.
wineps: Remove unneeded GetTransform prototype.
winex11: Remap pixels to system palette in Get/PutImage for 4 and 8 bpp.
winex11: Fill in the color table in Get/PutImage for 4 and 8 bpp.
winex11: Verify that the color map matches in PutImage for 4 and 8 bpp.
gdi32: Add a special case for converting dibs to 1-bp...
2007 Jun 27
0
Branch 'as' - 16 commits - configure.ac libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_script_function.c
...rgc, jsval *argv, jsval *rval)
-{
- SWFDEC_WARNING ("FIXME: implement this sound function");
- return JS_TRUE;
-}
-
-static JSFunctionSpec sound_methods[] = {
- { "attachSound", not_implemented, 1, 0, 0 },
- { "getPan", not_implemented, 0, 0, 0 },
- { "getTransform", not_implemented, 0, 0, 0 },
- { "getVolume", not_implemented, 0, 0, 0 },
- { "setPan", not_implemented, 1, 0, 0 },
- { "setTransform", not_implemented, 1, 0, 0 },
- { "setVolume", not_implemented, 1, 0, 0 },
- { "start",...