Use feature detection macros everywhere
This commit is contained in:
parent
4db6327f78
commit
0b186b1fda
|
@ -12,14 +12,17 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include "common/Platform.h"
|
||||||
#include "utils/BackendBinding.h"
|
#include "utils/BackendBinding.h"
|
||||||
#include "../src/wire/TerribleCommandBuffer.h"
|
#include "wire/TerribleCommandBuffer.h"
|
||||||
|
|
||||||
// Include Windows.h before GLFW to avoid a redefinition of APIENTRY
|
// Include Windows.h before GLFW to avoid a redefinition of APIENTRY
|
||||||
#ifdef _WIN32
|
#if defined(NXT_PLATFORM_WINDOWS)
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
#else
|
#elif defined(NXT_PLATFORM_POSIX)
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#else
|
||||||
|
#error "Unsupported platform."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <nxt/nxt.h>
|
#include <nxt/nxt.h>
|
||||||
|
@ -176,14 +179,16 @@ void DoSwapBuffers() {
|
||||||
binding->SwapBuffers();
|
binding->SwapBuffers();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _WIN32
|
#if defined(NXT_PLATFORM_WINDOWS)
|
||||||
void USleep(uint64_t usecs) {
|
void USleep(uint64_t usecs) {
|
||||||
Sleep(static_cast<DWORD>(usecs / 1000));
|
Sleep(static_cast<DWORD>(usecs / 1000));
|
||||||
}
|
}
|
||||||
#else
|
#elif defined(NXT_PLATFORM_POSIX)
|
||||||
void USleep(uint64_t usecs) {
|
void USleep(uint64_t usecs) {
|
||||||
usleep(usecs);
|
usleep(usecs);
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
#error "Implement USleep for your platform."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool ShouldQuit() {
|
bool ShouldQuit() {
|
||||||
|
|
|
@ -49,7 +49,7 @@ namespace opengl {
|
||||||
spirv_cross::CompilerGLSL::Options options;
|
spirv_cross::CompilerGLSL::Options options;
|
||||||
|
|
||||||
// TODO(cwallez@chromium.org): discover the backing context version and use that.
|
// TODO(cwallez@chromium.org): discover the backing context version and use that.
|
||||||
#if defined(__APPLE__)
|
#if defined(NXT_PLATFORM_APPLE)
|
||||||
options.version = 410;
|
options.version = 410;
|
||||||
#else
|
#else
|
||||||
options.version = 450;
|
options.version = 450;
|
||||||
|
|
|
@ -21,6 +21,7 @@ list(APPEND COMMON_SOURCES
|
||||||
${COMMON_DIR}/Compiler.h
|
${COMMON_DIR}/Compiler.h
|
||||||
${COMMON_DIR}/Math.cpp
|
${COMMON_DIR}/Math.cpp
|
||||||
${COMMON_DIR}/Math.h
|
${COMMON_DIR}/Math.h
|
||||||
|
${COMMON_DIR}/Platform.h
|
||||||
${COMMON_DIR}/Serial.h
|
${COMMON_DIR}/Serial.h
|
||||||
${COMMON_DIR}/SerialQueue.h
|
${COMMON_DIR}/SerialQueue.h
|
||||||
)
|
)
|
||||||
|
|
|
@ -16,13 +16,13 @@
|
||||||
|
|
||||||
#include "common/Assert.h"
|
#include "common/Assert.h"
|
||||||
|
|
||||||
#if defined(_WIN32) || defined(_WIN64)
|
#if defined(NXT_COMPILER_MSVC)
|
||||||
#include <intrin.h>
|
#include <intrin.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
uint32_t ScanForward(uint32_t bits) {
|
uint32_t ScanForward(uint32_t bits) {
|
||||||
ASSERT(bits != 0);
|
ASSERT(bits != 0);
|
||||||
#if defined(_WIN32) || defined(_WIN64)
|
#if defined(NXT_COMPILER_MSVC)
|
||||||
unsigned long firstBitIndex = 0ul;
|
unsigned long firstBitIndex = 0ul;
|
||||||
unsigned char ret = _BitScanForward(&firstBitIndex, bits);
|
unsigned char ret = _BitScanForward(&firstBitIndex, bits);
|
||||||
ASSERT(ret != 0);
|
ASSERT(ret != 0);
|
||||||
|
@ -34,7 +34,7 @@ uint32_t ScanForward(uint32_t bits) {
|
||||||
|
|
||||||
uint32_t Log2(uint32_t value) {
|
uint32_t Log2(uint32_t value) {
|
||||||
ASSERT(value != 0);
|
ASSERT(value != 0);
|
||||||
#if defined(_WIN32) || defined(_WIN64)
|
#if defined(NXT_COMPILER_MSVC)
|
||||||
unsigned long firstBitIndex = 0ul;
|
unsigned long firstBitIndex = 0ul;
|
||||||
unsigned char ret = _BitScanReverse(&firstBitIndex, value);
|
unsigned char ret = _BitScanReverse(&firstBitIndex, value);
|
||||||
ASSERT(ret != 0);
|
ASSERT(ret != 0);
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
// Copyright 2017 The NXT Authors
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
#ifndef COMMON_PLATFORM_H_
|
||||||
|
#define COMMON_PLATFORM_H_
|
||||||
|
|
||||||
|
#if defined(_WIN32) || defined(_WIN64)
|
||||||
|
#define NXT_PLATFORM_WINDOWS 1
|
||||||
|
#elif defined(__linux__)
|
||||||
|
#define NXT_PLATFORM_LINUX 1
|
||||||
|
#define NXT_PLATFORM_POSIX 1
|
||||||
|
#elif defined(__APPLE__)
|
||||||
|
#define NXT_PLATFORM_APPLE 1
|
||||||
|
#define NXT_PLATFORM_POSIX 1
|
||||||
|
#else
|
||||||
|
#error "Unsupported platform."
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif // COMMON_PLATFORM_H_
|
|
@ -29,7 +29,7 @@ namespace utils {
|
||||||
class OpenGLBinding : public BackendBinding {
|
class OpenGLBinding : public BackendBinding {
|
||||||
public:
|
public:
|
||||||
void SetupGLFWWindowHints() override {
|
void SetupGLFWWindowHints() override {
|
||||||
#ifdef __APPLE__
|
#if defined(NXT_PLATFORM_APPLE)
|
||||||
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
|
||||||
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1);
|
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1);
|
||||||
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GLFW_TRUE);
|
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GLFW_TRUE);
|
||||||
|
|
Loading…
Reference in New Issue