Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
ofxImGui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wt
ofxImGui
Commits
cf3b0811
Commit
cf3b0811
authored
Dec 01, 2019
by
w4t
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ifdef tweak for 0.10.0
parent
4625ad11
Pipeline
#71
canceled with stages
Changes
5
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
main.cpp
example-addons/src/main.cpp
+1
-1
main.cpp
example-demo-parameter/src/main.cpp
+1
-1
main.cpp
example-demo-remote/src/main.cpp
+1
-1
main.cpp
example-demo/src/main.cpp
+3
-3
main.cpp
example-helpers/src/main.cpp
+1
-1
No files found.
example-addons/src/main.cpp
View file @
cf3b0811
...
...
@@ -24,7 +24,7 @@ int main()
{
ofSetLogLevel
(
OF_LOG_VERBOSE
);
#if defined(TARGET_OPENGLES)
#if (OF_VERSION_MINOR
=
= 9)
#if (OF_VERSION_MINOR
>
= 9)
ofGLESWindowSettings
settings
;
settings
.
currentW
=
1280
;
settings
.
currentH
=
720
;
...
...
example-demo-parameter/src/main.cpp
View file @
cf3b0811
...
...
@@ -24,7 +24,7 @@ int main()
{
ofSetLogLevel
(
OF_LOG_VERBOSE
);
#if defined(TARGET_OPENGLES)
#if (OF_VERSION_MINOR
=
= 9)
#if (OF_VERSION_MINOR
>
= 9)
ofGLESWindowSettings
settings
;
settings
.
currentW
=
1280
;
settings
.
currentH
=
720
;
...
...
example-demo-remote/src/main.cpp
View file @
cf3b0811
...
...
@@ -35,7 +35,7 @@ int main()
{
ofSetLogLevel
(
OF_LOG_VERBOSE
);
#if defined(TARGET_OPENGLES)
#if (OF_VERSION_MINOR
=
= 9)
#if (OF_VERSION_MINOR
>
= 9)
ofGLESWindowSettings
settings
;
settings
.
setSize
(
1280
,
720
);
settings
.
setGLESVersion
(
2
);
...
...
example-demo/src/main.cpp
View file @
cf3b0811
...
...
@@ -5,10 +5,10 @@
#endif
//#define FORCE_PROGRAMMMABLE 1
//
#define FORCE_APPGLFW 1
#define FORCE_APPGLFW 1
//#define FORCE_APPGLFW_PROGRAMMMABLE 1
//#define FORCE_NOAPP 1
#define FORCE_APPGLUT 1
//
#define FORCE_APPGLUT 1
#ifdef FORCE_PROGRAMMMABLE
#include "ofGLProgrammableRenderer.h"
...
...
@@ -35,7 +35,7 @@ int main()
{
ofSetLogLevel
(
OF_LOG_VERBOSE
);
#if defined(TARGET_OPENGLES)
#if (OF_VERSION_MINOR
=
= 9)
#if (OF_VERSION_MINOR
>
= 9)
ofGLESWindowSettings
settings
;
settings
.
setSize
(
1280
,
720
);
settings
.
setGLESVersion
(
2
);
...
...
example-helpers/src/main.cpp
View file @
cf3b0811
...
...
@@ -24,7 +24,7 @@ int main()
{
ofSetLogLevel
(
OF_LOG_VERBOSE
);
#if defined(TARGET_OPENGLES)
#if (OF_VERSION_MINOR
=
= 9)
#if (OF_VERSION_MINOR
>
= 9)
ofGLESWindowSettings
settings
;
settings
.
currentW
=
1280
;
settings
.
currentH
=
720
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment