72 lines
1.9 KiB
Java
72 lines
1.9 KiB
Java
/*
|
|
* ******************************************************************************
|
|
* *
|
|
* *
|
|
* * This program and the accompanying materials are made available under the
|
|
* * terms of the Apache License, Version 2.0 which is available at
|
|
* * https://www.apache.org/licenses/LICENSE-2.0.
|
|
* *
|
|
* * See the NOTICE file distributed with this work for additional
|
|
* * information regarding copyright ownership.
|
|
* * Unless required by applicable law or agreed to in writing, software
|
|
* * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* * License for the specific language governing permissions and limitations
|
|
* * under the License.
|
|
* *
|
|
* * SPDX-License-Identifier: Apache-2.0
|
|
* *****************************************************************************
|
|
*/
|
|
|
|
package vizdoom;
|
|
public enum ScreenResolution {
|
|
RES_160X120, // 4:3
|
|
|
|
RES_200X125, // 16:10
|
|
RES_200X150, // 4:3
|
|
|
|
RES_256X144, // 16:9
|
|
RES_256X160, // 16:10
|
|
RES_256X192, // 4:3
|
|
|
|
RES_320X180, // 16:9
|
|
RES_320X200, // 16:10
|
|
RES_320X240, // 4:3
|
|
RES_320X256, // 5:4
|
|
|
|
RES_400X225, // 16:9
|
|
RES_400X250, // 16:10
|
|
RES_400X300, // 4:3
|
|
|
|
RES_512X288, // 16:9
|
|
RES_512X320, // 16:10
|
|
RES_512X384, // 4:3
|
|
|
|
RES_640X360, // 16:9
|
|
RES_640X400, // 16:10
|
|
RES_640X480, // 4:3
|
|
|
|
RES_800X450, // 16:9
|
|
RES_800X500, // 16:10
|
|
RES_800X600, // 4:3
|
|
|
|
RES_1024X576, // 16:9
|
|
RES_1024X640, // 16:10
|
|
RES_1024X768, // 4:3
|
|
|
|
RES_1280X720, // 16:9
|
|
RES_1280X800, // 16:10
|
|
RES_1280X960, // 4:3
|
|
RES_1280X1024, // 5:4
|
|
|
|
RES_1400X787, // 16:9
|
|
RES_1400X875, // 16:10
|
|
RES_1400X1050, // 4:3
|
|
|
|
RES_1600X900, // 16:9
|
|
RES_1600X1000, // 16:10
|
|
RES_1600X1200, // 4:3
|
|
|
|
RES_1920X1080; // 16:9
|
|
}
|