Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-02-01 13:02:53 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-02-01 13:02:53 +0300
commita59841b016f76dea59fb86aa18980447199a1451 (patch)
treee58d57599efbe1b00f5e2ac5d5d99ac34d792763 /source/creator
parent3e8a2a5f070608428d539b039c3be68e6d9f4540 (diff)
WM Draw Method added to do Overlap assuming swap exchange / flipping,
and made that the default for windows software opengl because that seems to be working better at least on XP. Previously this could only be specified from the command line.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 1e002869853..6244032bbcf 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -372,13 +372,6 @@ static int prefsize(int argc, char **argv, void *data)
return 4;
}
-static int swap_exchange(int argc, char **argv, void *data)
-{
- G.f |= G_SWAP_EXCHANGE;
-
- return 0;
-}
-
static int with_borders(int argc, char **argv, void *data)
{
/* with borders XXX OLD CRUFT!*/
@@ -846,7 +839,6 @@ void setupArguments(bContext *C, bArgs *ba, SYS_SystemHandle *syshandle)
/* second pass: custom window stuff */
BLI_argsAdd(ba, "-p", 2, prefsize, NULL);
- BLI_argsAdd(ba, "-E", 2, swap_exchange, NULL);
BLI_argsAdd(ba, "-w", 2, with_borders, NULL);
BLI_argsAdd(ba, "-W", 2, without_borders, NULL);
BLI_argsAdd(ba, "-R", 2, register_extension, ba);