-
In MHP 1.0.2 and 1.0.3, the default compositing rule is
SRC_OVER as stated in the description of class
DVBGraphics in Annex U of the MHP specification. As
pointed out in the same section, this rule does not
give the highest performance.
In AnimationTest, the background is first drawn with
the default rule and then the rule is explicitly set to
SRC_OVER to paint the butterfly. This...
2004-03-01 13:24:15 UTC in MHPTester
-
Logged In: YES
user_id=738477
Sorry, this is a duplicate of 758180, an iadvertant press on
refresh in my browser.
2003-06-25 14:08:03 UTC in MHPTester
-
Ixc tests try to communicate between a signed and an
unsigned xlet. Signed xlets may only communicate with
signed xlets. Unsigned xlets may only communicate with
unsigned xlets. See 12.6.2.14 in MHP BlueBook A057 rev2.
2003-06-25 14:05:43 UTC in MHPTester
-
Ixc tests try to communicate between a signed and an
unsigned xlet. Signed xlets may only communicate with
signed xlets. Unsigned xlets may only communicate with
unsigned xlets. See 12.6.2.14 in MHP BlueBook A057 rev2.
2003-06-23 12:01:23 UTC in MHPTester
-
In the return channel tests, to get an RCInterface, the
following call is used:
RCInterface rcinterface =
manager.getInterface(addr);
In Bluebook a057rev2, it is stated that NULL is
returned if the interface to be used is not yet known.
The tests do not take this possible return value into
account.
In this case, one possible solution would be to use the
first...
2003-06-23 09:50:26 UTC in MHPTester
-
in ApplaunchTest.java, at line 172, oidString should be
changed to aidString, e.g.:
ids[0] = (String)context.getXletProperty(
IACTestXletValues.oidString );
ids[1] = (String)context.getXletProperty(
IACTestXletValues.oidString );
should be:
ids[0] = (String)context.getXletProperty(
IACTestXletValues.oidString );
ids[1] = (String)context.getXletProperty(...
2003-03-20 16:52:47 UTC in MHPTester