Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
48867c80
Commit
48867c80
authored
11 years ago
by
Maxime Graulich
Browse files
Options
Downloads
Patches
Plain Diff
iOS: fix scale
parent
72757afe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/mobile/iOS/Onelab/EAGLView.mm
+11
-14
11 additions, 14 deletions
contrib/mobile/iOS/Onelab/EAGLView.mm
contrib/mobile/iOS/Onelab/ModelViewController.mm
+5
-2
5 additions, 2 deletions
contrib/mobile/iOS/Onelab/ModelViewController.mm
with
16 additions
and
16 deletions
contrib/mobile/iOS/Onelab/EAGLView.mm
+
11
−
14
View file @
48867c80
...
@@ -28,27 +28,24 @@
...
@@ -28,27 +28,24 @@
//The GL view is stored in the nib file. When it's unarchived it's sent -initWithCoder:
//The GL view is stored in the nib file. When it's unarchived it's sent -initWithCoder:
-
(
id
)
initWithCoder
:(
NSCoder
*
)
coder
-
(
id
)
initWithCoder
:(
NSCoder
*
)
coder
{
{
int
w
=
320
;
int
h
=
480
;
float
ver
=
[[[
UIDevice
currentDevice
]
systemVersion
]
floatValue
];
// You can't detect screen resolutions in pre 3.2 devices, but they are all 320x480
if
(
ver
>=
3.2
f
)
{
UIScreen
*
mainscr
=
[
UIScreen
mainScreen
];
w
=
mainscr
.
currentMode
.
size
.
width
;
h
=
mainscr
.
currentMode
.
size
.
height
;
}
if
((
self
=
[
super
initWithCoder
:
coder
]))
{
if
((
self
=
[
super
initWithCoder
:
coder
]))
{
// Get the layer
// Get the layer
CAEAGLLayer
*
eaglLayer
=
(
CAEAGLLayer
*
)
self
.
layer
;
CAEAGLLayer
*
eaglLayer
=
(
CAEAGLLayer
*
)
self
.
layer
;
if
((
w
==
640
&&
h
==
960
)
||
(
h
==
1536
&&
w
==
2048
))
{
// Retina display detected
int
w
=
320
;
int
h
=
480
;
if
([[[
UIDevice
currentDevice
]
systemVersion
]
floatValue
]
>=
3.2
f
)
{
// There is no retina display above 3.2
UIScreen
*
mainscr
=
[
UIScreen
mainScreen
];
w
=
mainscr
.
currentMode
.
size
.
width
;
h
=
mainscr
.
currentMode
.
size
.
height
;
}
if
((
w
==
640
&&
h
==
960
)
||
(
h
==
1536
&&
w
==
2048
))
{
// Retina display (iPhone or iPad/iPad mini)
self
.
contentScaleFactor
=
2.0
;
self
.
contentScaleFactor
=
2.0
;
eaglLayer
.
contentsScale
=
2
;
eaglLayer
.
contentsScale
=
2
;
}
}
eaglLayer
.
opaque
=
YES
;
eaglLayer
.
opaque
=
YES
;
eaglLayer
.
drawableProperties
=
eaglLayer
.
drawableProperties
=
[
NSDictionary
dictionaryWithObjectsAndKeys
:[
NSNumber
numberWithBool
:
NO
],
[
NSDictionary
dictionaryWithObjectsAndKeys
:[
NSNumber
numberWithBool
:
NO
],
kEAGLDrawablePropertyRetainedBacking
,
kEAGLDrawablePropertyRetainedBacking
,
kEAGLColorFormatRGBA8
,
kEAGLColorFormatRGBA8
,
kEAGLDrawablePropertyColorFormat
,
nil
];
kEAGLDrawablePropertyColorFormat
,
nil
];
...
...
This diff is collapsed.
Click to expand it.
contrib/mobile/iOS/Onelab/ModelViewController.mm
+
5
−
2
View file @
48867c80
...
@@ -218,16 +218,19 @@
...
@@ -218,16 +218,19 @@
-
(
void
)
prevAnimation
{
animation_prev
();
[
self
requestRender
];
}
-
(
void
)
prevAnimation
{
animation_prev
();
[
self
requestRender
];
}
-
(
IBAction
)
pinch
:(
UIPinchGestureRecognizer
*
)
sender
-
(
IBAction
)
pinch
:(
UIPinchGestureRecognizer
*
)
sender
{
{
if
(
!
glView
->
rotate
&&
[
sender
numberOfTouches
]
=
=
2
)
{
if
(
!
glView
->
rotate
&&
[
sender
numberOfTouches
]
<
=
2
)
{
float
mScale
=
scaleFactor
;
float
mScale
=
scaleFactor
;
if
(
sender
.
state
==
UIGestureRecognizerStateBegan
)
if
(
sender
.
state
==
UIGestureRecognizerStateBegan
)
mScale
=
scaleFactor
;
mScale
=
scaleFactor
;
else
if
(
sender
.
state
==
UIGestureRecognizerStateChanged
)
else
if
(
sender
.
state
==
UIGestureRecognizerStateChanged
)
mScale
=
scaleFactor
*
[
sender
scale
];
mScale
=
scaleFactor
*
[
sender
scale
];
else
if
(
sender
.
state
==
UIGestureRecognizerStateEnded
||
sender
.
state
==
UIGestureRecognizerStateCancelled
){
else
if
(
sender
.
state
==
UIGestureRecognizerStateEnded
){
scaleFactor
*=
[
sender
scale
];
scaleFactor
*=
[
sender
scale
];
mScale
=
scaleFactor
;
mScale
=
scaleFactor
;
}
}
else
if
(
sender
.
state
==
UIGestureRecognizerStateCancelled
){
mScale
=
scaleFactor
;
}
mScale
=
MAX
(
0.1
,
mScale
);
mScale
=
MAX
(
0.1
,
mScale
);
glView
->
mContext
->
eventHandler
(
2
,
mScale
);
glView
->
mContext
->
eventHandler
(
2
,
mScale
);
}
}
...
...
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