소스 검색

You know what, just remove const

jp9000 6 년 전
부모
커밋
30c4fe4b83
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      libobs-metal/metal-subsystem.mm

+ 3 - 2
libobs-metal/metal-subsystem.mm

@@ -1449,13 +1449,14 @@ static inline void gs_indexbuffer_flush_internal(gs_indexbuffer_t *indexbuffer,
 
 void gs_indexbuffer_flush(gs_indexbuffer_t *indexbuffer)
 {
-	gs_indexbuffer_flush_internal(indexbuffer, indexbuffer->indices.get());
+	gs_indexbuffer_flush_internal(indexbuffer,
+			(void *)indexbuffer->indices.get());
 }
 
 void gs_indexbuffer_flush_direct(gs_indexbuffer_t *indexbuffer,
 		const void *data)
 {
-	gs_indexbuffer_flush_internal(indexbuffer, data);
+	gs_indexbuffer_flush_internal(indexbuffer, (void *)data);
 }
 
 void *gs_indexbuffer_get_data(const gs_indexbuffer_t *indexbuffer)