Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flow3r
flow3r firmware
Commits
255136a6
Verified
Commit
255136a6
authored
1 year ago
by
dos
Browse files
Options
Downloads
Patches
Plain Diff
sim: fakes: ctx: Implement ctx_x, ctx_y and ctx_logo bindings
parent
33053eae
No related branches found
No related tags found
1 merge request
!600
Simulator improvements
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
sim/fakes/ctx.py
+14
-3
14 additions, 3 deletions
sim/fakes/ctx.py
sim/wasm/build.sh
+1
-1
1 addition, 1 deletion
sim/wasm/build.sh
sim/wasm/ctx.wasm
+0
-0
0 additions, 0 deletions
sim/wasm/ctx.wasm
with
15 additions
and
4 deletions
sim/fakes/ctx.py
+
14
−
3
View file @
255136a6
...
...
@@ -97,6 +97,16 @@ class Wasm:
self
.
free
(
p
)
return
res
def
ctx_x
(
self
,
ctx
):
return
self
.
_i
.
exports
.
ctx_x
(
ctx
)
def
ctx_y
(
self
,
ctx
):
return
self
.
_i
.
exports
.
ctx_y
(
ctx
)
def
ctx_logo
(
self
,
ctx
,
*
args
):
args
=
[
float
(
a
)
for
a
in
args
]
return
self
.
_i
.
exports
.
ctx_logo
(
ctx
,
*
args
)
def
ctx_destroy
(
self
,
ctx
):
return
self
.
_i
.
exports
.
ctx_destroy
(
ctx
)
...
...
@@ -229,16 +239,17 @@ class Context:
@property
def
x
(
self
):
return
0
return
_wasm
.
ctx_x
(
self
.
_ctx
)
@property
def
y
(
self
):
return
0
return
_wasm
.
ctx_y
(
self
.
_ctx
)
def
_emit
(
self
,
text
):
_wasm
.
ctx_parse
(
self
.
_ctx
,
text
)
def
logo
(
self
,
x
,
y
,
r
):
def
logo
(
self
,
x
,
y
,
dim
):
_wasm
.
ctx_logo
(
self
.
_ctx
,
x
,
y
,
dim
)
return
self
def
move_to
(
self
,
x
,
y
):
...
...
This diff is collapsed.
Click to expand it.
sim/wasm/build.sh
+
1
−
1
View file @
255136a6
...
...
@@ -18,7 +18,7 @@ emcc ctx.c \
-I
../../components/ctx/
\
-I
../../components/ctx/fonts/
\
-D
SIMULATOR
\
-s
EXPORTED_FUNCTIONS
=
_ctx_new_for_framebuffer,_ctx_new_drawlist,_ctx_parse,_ctx_apply_transform,_ctx_text_width,_ctx_
render_ctx
,_ctx_define_texture,_ctx_draw_texture,_ctx_destroy,_stbi_load_from_memory,_malloc,_free
\
-s
EXPORTED_FUNCTIONS
=
_ctx_new_for_framebuffer,_ctx_new_drawlist,_ctx_parse,_ctx_apply_transform,_ctx_text_width,_ctx_
x,_ctx_y,_ctx_render_ctx,_ctx_logo
,_ctx_define_texture,_ctx_draw_texture,_ctx_destroy,_stbi_load_from_memory,_malloc,_free
\
--no-entry
-flto
-O3
\
-o
ctx.wasm
This diff is collapsed.
Click to expand it.
sim/wasm/ctx.wasm
+
0
−
0
View file @
255136a6
No preview for this file type
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment