Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions docs/USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,20 +255,6 @@ Arguments to pass to the guest program, only valid if there is no existing argum
* XXXX: Pass argument XXXX to the program.
* XXXX YYYY ZZZZ: Pass arguments XXXX, YYYY and ZZZZ to the guest program.

### BOX64_CEFDISABLEGPU

Add -cef-disable-gpu argument to the guest program.

* 0: Does nothing. [Default]
* 1: Add -cef-disable-gpu argument to the guest program.

### BOX64_CEFDISABLEGPUCOMPOSITING

Add -cef-disable-gpu-compositing argument to the guest program.

* 0: Does nothing. [Default]
* 1: Add -cef-disable-gpu-compositing argument to the guest program.

### BOX64_INSERT_ARGS

Prepend arguments to the command line.
Expand Down
16 changes: 0 additions & 16 deletions docs/box64.pod
Original file line number Diff line number Diff line change
Expand Up @@ -107,22 +107,6 @@ Path to the bash executable.
* XXXX : Use bash executable at path XXXX.


=item B<BOX64_CEFDISABLEGPU> =I<0|1>

Add -cef-disable-gpu argument to the guest program.

* 0 : Does nothing. [Default]
* 1 : Add -cef-disable-gpu argument to the guest program.


=item B<BOX64_CEFDISABLEGPUCOMPOSITING> =I<0|1>

Add -cef-disable-gpu-compositing argument to the guest program.

* 0 : Does nothing. [Default]
* 1 : Add -cef-disable-gpu-compositing argument to the guest program.


=item B<BOX64_CPUTYPE> =I<0|1>

Specify the CPU type to emulate. Available in WowBox64.
Expand Down
36 changes: 0 additions & 36 deletions docs/gen/usage.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,42 +135,6 @@
}
]
},
{
"name": "BOX64_CEFDISABLEGPU",
"description": "Add -cef-disable-gpu argument to the guest program.",
"category": "Arguments",
"wine": false,
"options": [
{
"key": "0",
"description": "Does nothing.",
"default": true
},
{
"key": "1",
"description": "Add -cef-disable-gpu argument to the guest program.",
"default": false
}
]
},
{
"name": "BOX64_CEFDISABLEGPUCOMPOSITING",
"description": "Add -cef-disable-gpu-compositing argument to the guest program.",
"category": "Arguments",
"wine": false,
"options": [
{
"key": "0",
"description": "Does nothing.",
"default": true
},
{
"key": "1",
"description": "Add -cef-disable-gpu-compositing argument to the guest program.",
"default": false
}
]
},
{
"name": "BOX64_CPUTYPE",
"description": "Specify the CPU type to emulate.",
Expand Down
8 changes: 0 additions & 8 deletions src/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1078,14 +1078,6 @@ int initialize(int argc, const char **argv, char** env, x64emu_t** emulator, elf
{
add_argv("--in-process-gpu");
}
if(BOX64ENV(cefdisablegpu))
{
add_argv("-cef-disable-gpu");
}
if(BOX64ENV(cefdisablegpucompositing))
{
add_argv("-cef-disable-gpu-compositing");
}
// add new args only if there is no args already
if(BOX64ENV(args)) {
char tmp[256];
Expand Down
2 changes: 0 additions & 2 deletions src/include/env.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ extern char* ftrace_name;
STRING(BOX64_ARGS, args, 0) \
STRING(BOX64_BASH, bash, 0) \
STRING(BOX64_PYTHON3, python3, 0) \
BOOLEAN(BOX64_CEFDISABLEGPU, cefdisablegpu, 0, 0) \
BOOLEAN(BOX64_CEFDISABLEGPUCOMPOSITING, cefdisablegpucompositing, 0, 0) \
INTEGER(BOX64_CPUTYPE, cputype, 0, 0, 1, 1) \
BOOLEAN(BOX64_CRASHHANDLER, dummy_crashhandler, 1, 0) \
BOOLEAN(BOX64_DLSYM_ERROR, dlsym_error, 0, 0) \
Expand Down
Loading