Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
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
Container registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
4a72b550
Commit
4a72b550
authored
22 years ago
by
Martin Stjernholm
Browse files
Options
Downloads
Patches
Plain Diff
Some type fixes for Image.Color.Color.
Rev: lib/modules/_Image.pmod/module.pmod:1.33
parent
4373ca5c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/modules/_Image.pmod/module.pmod
+5
-5
5 additions, 5 deletions
lib/modules/_Image.pmod/module.pmod
with
5 additions
and
5 deletions
lib/modules/_Image.pmod/module.pmod
+
5
−
5
View file @
4a72b550
#pike __REAL_VERSION__
// $Id: module.pmod,v 1.3
2
2003/01/
20 17:44:02 nilsson
Exp $
// $Id: module.pmod,v 1.3
3
2003/01/
31 02:02:48 mast
Exp $
static constant fmts = ([
"image/x-pnm" : "PNM",
...
...
@@ -256,8 +256,8 @@ Image.Image load(void|object|string file)
//! @decl Image.Image filled_circle(int xd,int yd)
//! @decl Image.Layer filled_circle_layer(int d)
//! @decl Image.Layer filled_circle_layer(int xd,int yd)
//! @decl Image.Layer filled_circle_layer(int d,Image.Color color)
//! @decl Image.Layer filled_circle_layer(int xd,int yd,Image.Color color)
//! @decl Image.Layer filled_circle_layer(int d,Image.Color
.Color
color)
//! @decl Image.Layer filled_circle_layer(int xd,int yd,Image.Color
.Color
color)
//! @decl Image.Layer filled_circle_layer(int d,int r,int g,int b)
//! @decl Image.Layer filled_circle_layer(int xd,int yd,int r,int g,int b)
//! @belongs Image
...
...
@@ -286,9 +286,9 @@ Image.Image filled_circle(int xd, void|int yd)
}
Image.Layer filled_circle_layer(int xd,int|Image.Color ...args)
Image.Layer filled_circle_layer(int xd,int|Image.Color
.Color
...args)
{
Image.Color c;
Image.Color
.Color
c;
int yd=0;
switch (sizeof(args))
{
...
...
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